Scheduled Meeting - Fetch a scheduled meeting
This API fetches scheduled meeting/s using the meetingId, jiomeetId or the time range. Click the "Show optional parameters" button to test the query parameters
Query Parameters
The meeting Id of the scheduled meeting
The 10 digit unique jiomeetId of the meeting
Start of the time range. To be used in combination with toDate
End of the time range. To be used in combination with fromDate
Header Parameters
The content type should be application/json
You need an app created on the JioMeet Platform and using the app credentials you can create a JWT to access this API. The JWT should have an issuer and the key "app" with the app id generated from the Plaform.
- 200
- 400
- 401
- 412
Success
Schema
Number of meetings in the response
List of meetings
{
"meetingsCount": 0,
"meetingDetails": [
null
]
}
Example fetch scheduled meeting response
{
"meetingsCount": 1,
"meetingDetails": [
{
"jiomeetId": "7212310665",
"topic": "Meeting created at 07:09 AM",
"isAutoRecordingEnabled": true,
"startTime": "2023-09-08T02:39:27.000Z",
"endTime": "2023-09-08T03:09:27.000Z",
"scheduledDuration": 1800000,
"meetingUrl": "https://platform.jiomeet.com/guest?meetingId=7212310665&pwd=7mVhq",
"status": "active",
"roomPIN": "7mVhq",
"meetingId": "sm-aed12dea-60d2-4757-9705-6c93dce0e3f0"
}
]
}
Schema
Status Code of the API
The error code of the API
The error message of the API
{
"customCode": 0,
"message": "string"
}
Schema
Status Code of the API
The error code of the API
The error message of the API
{
"customCode": 0,
"message": "string"
}
Schema
Status Code of the API
The error code of the API
The errors array which includes objects with a "property" and "message" properties describing the error
{
"customCode": 0,
"message": "string"
}